os.Process.state (field)

7 uses

	os (current package)
		exec.go#L44: 	state atomic.Uint32
		exec.go#L149: 	p.state.Store(uint32(statusDone)) // No persistent reference, as there is no handle.
		exec.go#L160: 	status := processStatus(p.state.Load())
		exec.go#L173: 	status = processStatus(p.state.Load())
		exec.go#L194: 	return processStatus(p.state.Load())
		exec.go#L299: 		state := p.state.Load()
		exec.go#L305: 		if !p.state.CompareAndSwap(state, uint32(newStatus)) {